home *** CD-ROM | disk | FTP | other *** search
/ Trouble & Attitude 4 / Trouble and Attitude - Issue 04.iso / mac / DATA / MOVIES / EDGE.Dxr / 00119_Field_NOTES.txt < prev    next >
Text File  |  1997-01-17  |  1KB  |  47 lines

  1. on MouseUp
  2.   
  3.   global gMovieName, gMovie, gSoloMode
  4.   global gNextIcon, gPreIcon, gBackIcon, gControlIcon, gIndexIcon, gFirstIcon
  5.   global gLastFrame, gPlaceOfOrigin
  6.   global gSideBarOfOrigin, gMap1Icon, gMap2Icon, gMultiPageSidebar
  7.   
  8.   
  9.   if the ClickOn = gControlIcon then 
  10.     openControlPanel
  11.   else if the ClickOn = gPreIcon then
  12.     if gMultiPageSidebar = FALSE then
  13.       -- single page sidebar
  14.       if the frame = label("M1") then
  15.         go to frame gSideBarOfOrigin
  16.       else if the frame = label("M2") then
  17.         go to frame gSideBarOfOrigin
  18.       else
  19.         go to frame gPlaceOfOrigin
  20.       end if
  21.     else
  22.       -- multiple page sidebar
  23.       if the frame = label("S5") then -- KLUDGE
  24.         set gMultiPageSidebar = FALSE
  25.         go to frame gPlaceOfOrigin
  26.       else
  27.         go to the frame - 1
  28.       end if 
  29.     end if
  30.   else if the ClickOn = gNextIcon then
  31.     if gMultiPageSidebar = TRUE then
  32.       if the frame = label("End") then
  33.         set gMultiPageSidebar = FALSE
  34.         go to frame gPlaceOfOrigin
  35.       else
  36.         go to the frame + 1
  37.       end if
  38.     end if
  39.   else if the ClickOn = gMap1Icon and the frame = label("S2") then
  40.     set gSideBarOfOrigin = the frame
  41.     go to frame label("M1")
  42.   else if the ClickOn = gMap2Icon and the frame = label("S2") then
  43.     set gSideBarOfOrigin = the frame
  44.     go to frame label("M2")
  45.   end if
  46.   
  47. end MouseUp